home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / Development / RKM_Companion_v2.04 / Timer / smakefile < prev    next >
Encoding:
Makefile  |  1996-03-20  |  366 b   |  19 lines

  1. CFLAGS = nostackcheck structureequivalence ignore=73
  2.  
  3. all: Get_Systime Multiple_Timers Simple_Timer Timer_Arithmetic
  4.  
  5. Get_Systime: Get_Systime.c
  6.     sc link $(CFLAGS) $@
  7.  
  8. Multiple_Timers: Multiple_Timers.c
  9.     sc link $(CFLAGS) $@
  10.  
  11. Simple_Timer: Simple_Timer.c
  12.     sc link $(CFLAGS) $@
  13.  
  14. Timer_Arithmetic: Timer_Arithmetic.c
  15.     sc link $(CFLAGS) $@
  16.  
  17. clean:
  18.     -delete \#?.(o|lnk)
  19.